home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevegaa.asm < prev    next >
Assembly Source File  |  1994-07-27  |  7KB  |  278 lines

  1. ;    Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2. ; This file is part of Aladdin Ghostscript.
  3. ; Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. ; or distributor accepts any responsibility for the consequences of using it,
  5. ; or for whether it serves any particular purpose or works at all, unless he
  6. ; or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. ; License (the "License") for full details.
  8. ; Every copy of Aladdin Ghostscript must include a copy of the License,
  9. ; normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. ; the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. ; under certain conditions described in the License.  Among other things, the
  12. ; License requires that the copyright notice and this notice be preserved on
  13. ; all copies.
  14.  
  15. ; gdevegaasm.asm
  16. ; Assembly code for Ghostscript PC frame buffer driver
  17.  
  18. gdevegaasm_TEXT    SEGMENT    BYTE PUBLIC 'CODE'
  19.     ASSUME    CS:gdevegaasm_TEXT
  20.  
  21. ; Note: Turbo C uses si and di for register variables, so
  22. ; we have to preserve them.
  23.  
  24. ; Normal entry and exit.  Arguments are relative to bp.
  25. enterp    macro
  26.     push    bp
  27.     mov    bp,sp
  28.     x = 6                ; offset of arguments,
  29.                     ; large code model
  30.     endm
  31. leavep    macro
  32.     pop    bp
  33.     endm
  34. ; Fast entry and exit, for procedures that don't use bx until
  35. ; they've fetched all their arguments.  Arguments are relative to ss:bx.
  36. enterf    macro
  37.     mov    bx,sp
  38.     x = 4                ; offset of arguments,
  39.                     ; large code model
  40.     endm
  41. leavef    macro
  42.     endm
  43.  
  44. ; Fast call to VESA set-page routine.
  45. ; void vesa_call_set_page(void (*set_page_proc)(int), int page_no, int win_no)
  46.     PUBLIC    _vesa_call_set_page
  47. _vesa_call_set_page proc far
  48.     enterf
  49.     mov ax,4f05h
  50.     mov dx,ss:[bx+x+4]            ; page_no
  51.     push ss:[bx+x+2]            ; set_page_proc
  52.     push ss:[bx+x]
  53.     mov bx,ss:[bx+x+6]            ; win_no
  54.     ret
  55. _vesa_call_set_page endp
  56.  
  57. ; Structure for operation parameters.
  58. ; Note that this structure is shared with C code.
  59. ; Not all parameters are used for every operation.
  60. ; typedef struct rop_params_s {
  61. p_dest    equ    0    ; fb_ptr dest;    /* pointer to frame buffer */
  62. p_draster equ    4    ; int draster;    /* raster of frame buffer */
  63. p_src    equ    6    ; const byte far *src; /* pointer to source data */
  64. p_sraster equ    10    ; int sraster;    /* source raster */
  65. p_width    equ    12    ; int width;    /* width in bytes */
  66. p_height equ    14    ; int height;    /* height in scan lines */
  67. p_shift equ    16    ; int shift;    /* amount to right shift source */
  68. p_invert equ    18    ; int invert;    /* 0 or -1 to invert source */
  69. p_data    equ    20    ; int data;    /* data for fill */
  70. ; } rop_params;
  71.  
  72. ; void memsetcol(rop_params _ss *rop)
  73. ; {    byte far *addr = rop->dest;
  74. ;    int yc = rop->height;
  75. ;    while ( yc-- )
  76. ;     { byte discard = *addr;
  77. ;       *addr = rop->data;
  78. ;       addr += rop->draster;
  79. ;     }
  80. ; }
  81.     PUBLIC    _memsetcol
  82. _memsetcol proc    far
  83.     enterf
  84.     push    ds
  85.     mov    ax,ss
  86.     mov    ds,ax
  87.     mov    bx,[bx+x]            ; rop
  88.     mov    cx,[bx].p_height
  89.     jcxz    msc0                ; height == 0
  90.     mov    ax,[bx].p_data
  91.     mov    dx,[bx].p_draster
  92.     lds    bx,[bx].p_dest
  93. ; Unroll the loop -- two copies.
  94.     inc    cx        ;round up to nearest word.  cx>=2 now.
  95.     shr    cx,1        ;make byte count into word count.
  96.     jnc    msc2        ;if it had been odd, do a half word first.
  97. msc1:    mov    ah,[bx]
  98.     mov    [bx],al
  99.     add    bx,dx
  100. msc2:    mov    ah,[bx]
  101.     mov    [bx],al
  102.     add    bx,dx
  103.     loop    msc1
  104.     pop    ds
  105. msc0:    leavef
  106.     ret
  107. _memsetcol ENDP
  108.  
  109. ; void memsetrect(rop_params _ss *rop)
  110. ; {    byte far *addr = rop->dest;
  111. ;    int yc = rop->height;
  112. ;    while ( yc-- )
  113. ;     { int cnt = rop->width;
  114. ;       while ( cnt-- ) *addr++ = rop->data;
  115. ;       addr += rop->drast - rop->width;
  116. ;     }
  117. ; }
  118.     PUBLIC    _memsetrect
  119. _memsetrect proc    far
  120.     enterf
  121.     push    ds
  122.     mov    ax,ss
  123.     mov    ds,ax
  124.     mov    bx,[bx+x]            ; rop
  125.     mov    cx,[bx].p_height
  126.     jcxz    msr0                ; height == 0
  127.     push    si
  128.     push    di
  129.     mov    ax,[bx].p_data
  130.     les    di,[bx].p_dest
  131.     cld
  132.     mov    dx,[bx].p_draster
  133.     mov    si,cx                ; si = height
  134.     mov    cx,[bx].p_width
  135.     sub    dx,cx
  136.     cmp    cx,10
  137.     ja    msrl                ; large count, use fast loop
  138. ; Small count, rep stosb is faster.
  139. msrs:    mov    cx,[bx].p_width
  140.     rep    stosb
  141.     add    di,dx
  142.     dec    si                ; count reps
  143.     jnz    msrs
  144.     pop    di
  145.     pop    si
  146. msr0:    pop    ds
  147.     leavef
  148.     ret
  149. ; Large count, loop by words rather than bytes.
  150. msrl:    mov    ah,al            ;we may be storing words...
  151. msr1:    mov    cx,[bx].p_width
  152.     test    di,1            ;test for an even address
  153.     je    msr2            ;if even, we can store words.
  154.     stosb                ;otherwise we need to even it out.
  155.     dec    cx            ;(cx is at least one here)
  156. msr2:    shr    cx,1            ;convert byte count into word count
  157.     rep    stosw            ;store them puppies as fast as we can.
  158.     jnc    msr3            ;if an odd number, store it, too.
  159.     stosb                ;(no need to dec cx here).
  160. msr3:    add    di,dx
  161.     dec    si            ; count reps
  162.     jnz    msr1
  163.     pop    di
  164.     pop    si
  165.     pop    ds
  166.     leavef
  167.     ret
  168. _memsetrect ENDP
  169.  
  170. ; void memrwcol(rop_params _ss *rop)
  171. ; {    byte far *dp = rop->dest;
  172. ;    const byte far *sp = rop->src;
  173. ;    int yc = rop->height;
  174. ;    int shift = rop->shift;
  175. ;    while ( yc-- )
  176. ;     { byte discard = *dp;
  177. ;       *dp = ((*sp >> shift) + (*sp << (8 - shift))) ^ rop->invert;
  178. ;       dp += rop->draster, sp += rop->sraster;
  179. ;     }
  180. ; }
  181.     PUBLIC    _memrwcol
  182. _memrwcol proc far
  183.     enterp
  184.     push    ds
  185.     mov    ax,ss
  186.     mov    ds,ax
  187.     mov    bx,[bp+x]            ; rop
  188.     cmp    word ptr [bx].p_height,0
  189.     jz    short mrw0
  190.     push    si
  191.     push    di
  192. ; Register usage:
  193. ;   ds:si = sp, es:di = dp, bx = sraster, dx = draster, cl = shift,
  194. ;   ch = invert, ah = low byte of yc.
  195.     push    [bx].p_height
  196.     mov    dx,[bx].p_draster
  197.     mov    ax,[bx].p_sraster
  198.     mov    cl,[bx].p_shift
  199.     mov    ch,[bx].p_invert
  200.     les    di,[bx].p_dest
  201.     lds    si,[bx].p_src
  202.     mov    bx,ax
  203.     mov    ah,[bp-8]            ; low byte of yc
  204.     test    ah,ah
  205.     jz    mrw2
  206. mrw1:    mov    al,[si]
  207.     ror    al,cl
  208.     xor    al,ch
  209.     xchg    es:[di],al
  210.     add    si,bx
  211.     add    di,dx
  212.     dec    ah
  213.     jnz    mrw1
  214. mrw2:    dec    byte ptr [bp-7]            ; high byte of yc
  215.     jge    mrw1
  216.     add    sp,2                ; pop yc
  217.     pop    di
  218.     pop    si
  219. mrw0:    pop    ds
  220.     leavep
  221.     ret
  222. _memrwcol ENDP
  223.  
  224. ; void memrwcol2(rop_params _ss *rop)
  225. ; {    byte far *dp = rop->dest;
  226. ;    const byte far *sp = rop->src;
  227. ;    int yc = rop->height;
  228. ;    int shift = rop->shift;
  229. ;    while ( yc-- )
  230. ;     { byte discard = *dp;
  231. ;       *dp = ((sp[1] >> shift) + (*sp << (8 - shift))) ^ rop->invert;
  232. ;       dp += rop->draster, sp += rop->sraster;
  233. ;     }
  234. ; }
  235.     PUBLIC    _memrwcol2
  236. _memrwcol2 proc far
  237.     enterp
  238.     push    ds
  239.     mov    ax,ss
  240.     mov    ds,ax
  241.     mov    bx,[bp+x]            ; rop
  242.     cmp    word ptr [bx].p_height,0
  243.     jz    short mrw20
  244.     push    si
  245.     push    di
  246. ; Register usage:
  247. ;   ds:si = sp, es:di = dp, bx = sraster, dx = draster, cl = shift,
  248. ;   ch = invert.
  249.     push    [bx].p_height
  250.     mov    dx,[bx].p_draster
  251.     mov    ax,[bx].p_sraster
  252.     mov    cl,[bx].p_shift
  253.     mov    ch,[bx].p_invert
  254.     les    di,[bx].p_dest
  255.     lds    si,[bx].p_src
  256.     mov    bx,ax
  257. mrw21:    mov    ax,[si]                ; bytes are in wrong order...
  258.     ror    ax,cl
  259.     xor    ah,ch                ; ... so result is in ah
  260.     xchg    es:[di],ah
  261.     add    si,bx
  262.     add    di,dx
  263.     dec    word ptr [bp-8]            ; yc
  264.     jg    mrw21
  265.     add    sp,2                ; pop yc
  266.     pop    di
  267.     pop    si
  268. mrw20:    pop    ds
  269.     leavep
  270.     ret
  271. _memrwcol2 ENDP
  272.  
  273. gdevegaasm_TEXT    ENDS
  274.     END
  275.